home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / progs / DIRECTOR / data.z / Tweening.dir / Scripts_7_Loop On Frame 50 Times.ls < prev    next >
Encoding:
Text File  |  1997-05-10  |  297 b   |  14 lines

  1. on exitFrame
  2.   global gCountTweeningLoop
  3.   if voidp(gCountTweeningLoop) then
  4.     set gCountTweeningLoop to 1
  5.   end if
  6.   if gCountTweeningLoop = 50 then
  7.     go(the frame + 1)
  8.     set gCountTweeningLoop to 1
  9.   else
  10.     go(the frame)
  11.     set gCountTweeningLoop to gCountTweeningLoop + 1
  12.   end if
  13. end
  14.